home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / XLIST.PAK / XLISTPPG.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  84 lines

  1. // xlistppg.cpp : Implementation of the CXlistPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. #include "stdafx.h"
  15. #include "xlist.h"
  16. #include "xlistppg.h"
  17.  
  18. #ifdef _DEBUG
  19. #undef THIS_FILE
  20. static char BASED_CODE THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23.  
  24. IMPLEMENT_DYNCREATE(CXlistPropPage, COlePropertyPage)
  25.  
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // Message map
  29.  
  30. BEGIN_MESSAGE_MAP(CXlistPropPage, COlePropertyPage)
  31.     //{{AFX_MSG_MAP(CXlistPropPage)
  32.     //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34.  
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // Initialize class factory and guid
  38.  
  39. IMPLEMENT_OLECREATE_EX(CXlistPropPage, "XLIST.XlistPropPage.1",
  40.     0x37446b9d, 0x5870, 0x101b, 0xb5, 0x7b, 0x0, 0x60, 0x8c, 0xc9, 0x6a, 0xfa)
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CXlistPropPage::CXlistPropPageFactory::UpdateRegistry -
  45. // Adds or removes system registry entries for CXlistPropPage
  46.  
  47. BOOL CXlistPropPage::CXlistPropPageFactory::UpdateRegistry(BOOL bRegister)
  48. {
  49.     if (bRegister)
  50.         return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  51.             m_clsid, IDS_XLIST_PPG);
  52.     else
  53.         return AfxOleUnregisterClass(m_clsid, NULL);
  54. }
  55.  
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CXlistPropPage::CXlistPropPage - Constructor
  59.  
  60. CXlistPropPage::CXlistPropPage() :
  61.     COlePropertyPage(IDD, IDS_XLIST_PPG_CAPTION)
  62. {
  63.     //{{AFX_DATA_INIT(CXlistPropPage)
  64.     m_InvertFlag = FALSE;
  65.     //}}AFX_DATA_INIT
  66. }
  67.  
  68.  
  69. /////////////////////////////////////////////////////////////////////////////
  70. // CXlistPropPage::DoDataExchange - Moves data between page and properties
  71.  
  72. void CXlistPropPage::DoDataExchange(CDataExchange* pDX)
  73. {
  74.     //{{AFX_DATA_MAP(CXlistPropPage)
  75.     DDP_Check(pDX, IDC_INVERTCHECK, m_InvertFlag, _T("InvertFlag"));
  76.     DDX_Check(pDX, IDC_INVERTCHECK, m_InvertFlag);
  77.     //}}AFX_DATA_MAP
  78.     DDP_PostProcessing(pDX);
  79. }
  80.  
  81.  
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CXlistPropPage message handlers
  84.